home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / littelcomp / r5 / lc / examples / for.l < prev    next >
Text File  |  2000-02-28  |  199b  |  15 lines

  1. ;          l language
  2. proc main        ; testing speed :)
  3.    var a b c
  4.    codestart
  5.    for a 0 100 1
  6.       for b 0 1000 1
  7.          for c 0 1000 1
  8.          endfor
  9.       endfor
  10.    endfor
  11. endproc
  12.  
  13. end
  14.  
  15.